The <ol> tag defines the start of an ordered list. Use together with the
  • tag to define list items.

Example:
<html> 
<head> 
<title>Creative Mission-Web Development & research center</title>
</head>
<body >
<ol> 
<li>Networking
 <ol start="10">
 <li>php</li>
 <li>My-SQL</li>
 <li>Java Script</li> 
 </ol> </li>
  <li>Web Development
 <ol reversed="reversed"> 
 <li>Coffee</li>
 <li>Tea</li>
 </ol></li>
 </ol>
  </body>
 </html>

Output:
  1. Networking
    1. php
    2. My-SQL
    3. Java Script
  2. Web Development
    1. Coffee
    2. Tea


All Tutorial => 123456789101112131415





Write Comment